Convert snake case string to camel case stringΒΆ

Convert snake case string to camel case string.
def snake_to_camel(word):

    import re

    return ''.join(x.capitalize() or '_' for x in word.split('_'))

# test
print(snake_to_camel('python_exercises'))

Output:

PythonExercises